diff --git a/V3Schema b/V3Schema
index 38f63b2..2745168 160000
--- a/V3Schema
+++ b/V3Schema
@@ -1 +1 @@
-Subproject commit 38f63b25d57ef9263393a5039e04612774e34233
+Subproject commit 2745168151646508a5fe10a525da83ec845019c8
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\nSome 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\nFor 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\nThe 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\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.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\nIf 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\nThis 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\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": "(\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\nThe 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\nIf 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\nAdaptive 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\nPhase 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\nThe 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\nAdaptive 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\nThe task message is the generic message used for requesting a task of the Three Scanner and receiving updates and results.
\n\nExample: 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\nThis 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," heigh t ":1560," s te p ":6312," wid t h ":2104}, \n" I n dex ":0, \n" Size ":856664, \n" Task ":{ \n" I n dex ":1, \n" Type ":" Cap ture Image ", \n" I n pu t ":{" selec t io n ":{0,1}, " grayscale ":false, " codec":jpg} \n} \n} \n} \n\n
\n\n\n
{ \n"Buffer" :{ \n"Descriptor" : "{" camera ":1," codec ":" jpg "," grayscale ":false," heigh t ":1560," s te p ":6312," wid t h ":2104}, \n" I n dex ":1, \n" Size ":847726, \n" Task ":{ \n" I n dex ":1, \n" Type ":" Cap ture Image ", \n" I n pu t ":{" selec t io n ":{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\nSay 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\nand 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\nThe first is the index of the _source group_: the group to be moved. \nThe second is the index of the _parent group_: the group into which the source group is moved. \n(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. \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\nThe 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\nRequest 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\nResponse 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\nAttributes:\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\nArgs:\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\nArgs:\n * URI (str): The URI of the websocket server.\n * timeoutSec (int): Timeout in seconds, default is 5.
\n\nReturns:\n bool: True if connection is successful, raises Exception otherwise.
\n\nRaises:\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\nReturns:\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\nCreates a task, serializes it, and sends it via the websocket.
\n\nArgs:\n * task (Task): The task to send.\n * buffer (bytes): The buffer data to send, default is None.
\n\nReturns:\n Any: The task object that was sent.
\n\nRaises:\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\nArgs: \n object: the object to serialize.
\n\nReturns:\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\nSome 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\nFor 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\nThe 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\nKnown 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\nThe 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\nReturned 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\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.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\nIf 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\nThis 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\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": "(\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\nThe 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\nIf 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\nAdaptive 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\nPhase 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\nThe 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\nAdaptive 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\nThe task message is the generic message used for requesting a task of the Three Scanner and receiving updates and results.
\n\nExample: 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\nThis 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," heigh t ":1560," s te p ":6312," wid t h ":2104}, \n" I n dex ":0, \n" Size ":856664, \n" Task ":{ \n" I n dex ":1, \n" Type ":" Cap ture Image ", \n" I n pu t ":{" selec t io n ":{0,1}, " grayscale ":false, " codec":jpg} \n} \n} \n} \n\n
\n\n\n
{ \n"Buffer" :{ \n"Descriptor" : "{" camera ":1," codec ":" jpg "," grayscale ":false," heigh t ":1560," s te p ":6312," wid t h ":2104}, \n" I n dex ":1, \n" Size ":847726, \n" Task ":{ \n" I n dex ":1, \n" Type ":" Cap ture Image ", \n" I n pu t ":{" selec t io n ":{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\nThe 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\nSay 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\nand 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\nThe 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\nThe 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\nOlder 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\nThe 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\nThe first is the index of the _source group_: the group to be moved. \nThe second is the index of the _parent group_: the group into which the source group is moved. \n(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. \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\nThe 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\nThe 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\nThe 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\nThe 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\nThe 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\nThe 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\nRequest 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\nResponse 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\nAttributes:\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\nArgs:\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\nArgs:\n * URI (str): The URI of the websocket server.\n * timeoutSec (int): Timeout in seconds, default is 5.
\n\nReturns:\n bool: True if connection is successful, raises Exception otherwise.
\n\nRaises:\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\nReturns:\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\nCreates a task, serializes it, and sends it via the websocket.
\n\nArgs:\n * task (Task): The task to send.\n * buffer (bytes): The buffer data to send, default is None.
\n\nReturns:\n Any: The task object that was sent.
\n\nRaises:\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\nArgs: \n object: the object to serialize.
\n\nReturns:\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..beb5afa 100644
--- a/docs/three.html
+++ b/docs/three.html
@@ -3,14 +3,14 @@
-
+
three API documentation
-
+
@@ -38,7 +38,7 @@ API Documentation
built with pdoc
+ src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20role%3D%22img%22%20aria-label%3D%22pdoc%20logo%22%20width%3D%22300%22%20height%3D%22160%22%20viewBox%3D%220%200%20150%2080%22%3E%3Ctitle%3Epdoc%3C/title%3E%3Cpath%20d%3D%22M132.316%2048.886c.276-4.679%202.342-6.698%204.409-7.982s4.27-1.165%206.751-1.055c1.586.07%203.044.156%204.222-.482%201.142-.619%202.026-1.932%202.162-3.739.268-3.576-1.929-5.368-5.006-5.551s-7.599.524-10.517%201.606c-4.455%201.652-8.588%206.606-9.552%208.992s-2.342%206.193-1.745%2010.873%202.664%209.221%205.878%2011.79%205.878%203.808%2010.103%204.312%203.444.229%206.062.229%205.006-2.202%204.914-4.909-2.296-5.001-4.501-4.863-3.077.505-5.281.229-7.715-2.064-7.899-9.451z%22%20fill%3D%22%23198754%22/%3E%3Ccircle%20cx%3D%22101.504%22%20cy%3D%2248.943%22%20r%3D%2214.208%22%20fill%3D%22none%22%20stroke%3D%22%23198754%22%20stroke-width%3D%229.354%22/%3E%3Cpath%20d%3D%22M87.81.002c-3.637.065-5.001.454-7.014%201.232s-3.443%201.363-6.3%204.282c-1.723%201.76-3.148%205.019-3.776%207.329-.413%201.521-.316%202.63-.316%202.63l-.195%2034.612c.065%205.774-6.755%208.305-9.612%208.37s-9.678-1.038-9.743-9.408%207.128-9.521%208.362-9.521c1.413-.13%202.526-.021%203.718-.016%202.071.009%204.157-.778%204.092-4.671s-4.157-4.736-4.157-4.736c-6.3-.843-11.43%202.206-11.43%202.206S40.917%2038.15%2041.372%2049.634%2051.568%2068.19%2061.311%2068.125s18.316-7.007%2018.445-17.193l.13-22.772c.046-2.291%202.683-3.644%204.476-4.203.745-.232%201.694-.274%201.694-.274l10.457-.13s4.871-.324%207.729-3.114%204.352-6.294%204.352-6.294.974-3.049.13-4.606-.195-1.233-2.792-3.309-8.573-4.477-8.573-4.477S91.447-.063%2087.81.002zM0%2047.169l.065%2028.417S0%2080.127%204.481%2079.997s5.072-3.866%205.049-4.152l-.113-28.482s1.624-7.656%209.937-7.721%2010.002%206.942%2010.002%208.499-.909%2010.51-9.093%2010.51c-.948%200-2.99-.567-4.145-.272-3.919%201-3.194%204.554-3.194%204.554s.065%205.061%207.404%204.996%2018.575-6.034%2018.575-19.074S26.953%2030.04%2019.549%2029.91%201.234%2035.296%200%2047.169z%22%20fill%3D%22%23198754%22/%3E%3Cg%20transform%3D%22matrix%28.325601%200%200%20.325256%20-10.32669%20-45.802786%29%22%3E%3Ccircle%20cx%3D%22297.554%22%20cy%3D%22172.286%22%20r%3D%2216.5%22%20fill%3D%22%23fff%22/%3E%3Cellipse%20cx%3D%22297.709%22%20cy%3D%22172.642%22%20rx%3D%2211.071%22%20ry%3D%2210.871%22%20fill%3D%22%23105a48%22/%3E%3Ccircle%20cx%3D%22304.104%22%20cy%3D%22167.667%22%20r%3D%224.5%22%20fill%3D%22%23fff%22/%3E%3C/g%3E%3Cpath%20d%3D%22M94.661%2017.032l.893-1.476s.99.714%201.916.925%201.575.114%202.955.114l14.565-.162c1.283-.032%203.085-.762%203.02-3.293s-.373-3.503-.373-3.503l1.283-.487s.52.503.877%201.573.309%201.995.292%202.66-.227%201.541-.227%201.541%201.564-.308%202.359-1.038.823-.779%201.489-1.508.812-.86.812-.86.552-.13.877.26.341.957.065%201.46-1.672%202.206-3.247%203.066-2.76%201.427-3.929%201.768-3.848.73-7.063.714l-10.944-.114s-2.143-.081-3.02-.373-2.241-.973-2.598-1.265z%22%20fill%3D%22%23d36d49%22/%3E%3Cg%20fill%3D%22%23105a48%22%3E%3Cellipse%20cx%3D%2293.052%22%20cy%3D%2243.567%22%20rx%3D%22.869%22%20ry%3D%221.014%22%20transform%3D%22rotate%28341.022%29%22/%3E%3Cellipse%20cx%3D%22104.3%22%20cy%3D%22-16.184%22%20rx%3D%22.865%22%20ry%3D%221.009%22%20transform%3D%22rotate%2814.786%29%22/%3E%3C/g%3E%3C/svg%3E"/>
@@ -52,7 +52,7 @@