Scientific Diary
(Notes to myself)
Wednesday, September 12, 2018
Friday, April 6, 2018
Using Meshlab filters from command prompt
- Process a 3D file using a filter script created in the MeshLab GUI (Filters > Show current filter script > Save Script):
meshlabserver -i input.ply -o output.ply -s filter_script.mlx
- Process a 3D file using a filter script, writing the output of the filters into a log file:
meshlabserver -i input.x3d -o output.x3d -s filter_script.mlx -l logfileThursday, January 4, 2018
Art of Using GPU with MatLab
Choosing using GPU/CPU/multi-GPU/parallel-cluster:
trainingoptions();
Documenting the properties of the available GPU:
gpuDevice;
https://blogs.mathworks.com/loren/2012/02/06/using-gpus-in-matlab/
Tuesday, December 26, 2017
iOS Developer Account
Creating a new iOS App Developer Account is explained step by step:
https://mobileroadie.zendesk.com/hc/en-us/articles/200091736-iOS-Developer-Account-Step-by-Step-Guide
For registering a DUNS number for company;
https://iupdate.dnb.com/iUpdate/viewiUpdateHome.htm
Further information about getting DUNS number for company;https://developer.apple.com/support/D-U-N-S/
Monday, December 4, 2017
Javascript switch
<label class="switch">
<input type="checkbox" onchange="editModeChanged(this);" checked>
<span class="slider round"></span>
</label>
function editModeChanged(switchValue)
{
console.log($(switchValue).is(':checked'));
}
Monday, November 20, 2017
Most common CAD/BIM file formats
1. DWG – This format is almost universally accepted by most model viewing/authoring programs. Also commonly referred to as CAD files, this might be the most ubiquitous digital file format in the AEC industry (and beyond). Anytime someone mentions “layers,” they are likely referring to a DWG file. Generally, these files are editable in any CAD-based program such as Autodesk AutoCAD, Graphisoft ArchiCAD, and Bentley MicroStation.
A common misconception with DWG files is that they only contain 2D information. Although that is typically true, DWG files can absolutely contain 3D objects as either basic planes or full components (known as “blocks”).
2. DXF – A very close cousin to the DWG, DXFs can be a little larger in file size but are also layer-based and a very commonly accepted format in most platforms.
3. IFC – These are arguably the most information-rich BIM files out there and can be opened by a number or programs including Autodesk Revit and Navisworks. These are similar to PDFs in that they are not meant to be edited and are a read-only format.
4. RVT – This is Autodesk’s proprietary format for Revit files. These can vary significantly in size depending on the level of development. They can only be opened in Revit.
5. NWD – This is Autodesk’s proprietary format for Navisworks files. NWD files are also read-only, although you may be able to save them under a new name and edit from there if the file was saved with that option enabled. These can only be open in Navisworks Freedom or Navisworks Manage.
Subscribe to:
Comments (Atom)
Setting Jupyter and Tensorflow on Google Cloud Platform
https://towardsdatascience.com/running-jupyter-notebook-in-google-cloud-platform-in-15-min-61e16da34d52
-
Choosing using GPU/CPU/multi-GPU/parallel-cluster: trainingoptions(); Documenting the properties of the available GPU: gpuDevice; h...
-
https://towardsdatascience.com/running-jupyter-notebook-in-google-cloud-platform-in-15-min-61e16da34d52
-
You can build a dockerfile $docker build -t some-arbitrary-label You can cleanup your machine using; $docker rmi some-arbitrary-label...