Message 1 of 5
Incomplete Real View for structured RCP created by Recap SDK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Sum-up:
When I create a structured RCP with Recap SDK, there are many missing pixels in the Real View seen in Recap application, whereas if I create a RCP with Recap application from exactly the same data, the Real View is fine.
Detailed protocol:
- From data in memory, I write an E57 file. Then, from this E57 file, with Recap application, I create a RCP. This is what I call the RCP created by Recap application.
- From the same data in memory, I create a structured RCP with Recap SDK, with the following parameters:
RCSharedPtr<RCProjectImportSession> import_session = RCProjectImportSession::init(filename, RCFileMode::New, error_code); RCScanMetadata scan_metadata; scan_metadata.isStructured = true; scan_metadata.structuredScanMetadata = ... RCScanImportOptions import_options; import_options.pointDistanceInMM = 0; import_options.noiseFilterLevel = RCNoiseFilterLevel::None; // Minimal gives the same result import_options.updateCacheFiles = false; import_session->addScan(scan_metadata, import_options);
Detailed results:
(Table with images doesn't seem to behave correctly.)
First image: 3D View. Second Image: Real View.
E57 file:
RCP created by Recap application:
RCP created by Recap SDK:
Question:
How can I get a correct (without missing pixels) Real View (2D panoramic image) for the structured RCP created with Recap SDK?