Skip to content

Commit

Permalink
RELEASE_NOTES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanmaierhofer committed Feb 23, 2023
1 parent aa74797 commit 9c0f476
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 14 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 5.2.16
- removed unused code
- pointcloud import: gracefully fixing mismatched property counts

### 5.2.15
- fix exception in Queries.QueryCell
- Improve ray - polymesh intersection functions
Expand Down
31 changes: 17 additions & 14 deletions src/Aardvark.Algodat.Tests/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1739,23 +1739,24 @@ internal static void Test_Import_Regression()
{
var filenames = new[]
{
//@"W:\Datasets\unstruk\Christchurch.laz",
//@"W:\Datasets\Vgm\Data\2023-02-23_bugreport\KOE1 OG7.e57",
@"W:\Datasets\unstruk\Christchurch.laz",
@"W:\Datasets\unstruk\Sensat-EWR-Bedford_22012021_Point-cloud.laz",
//@"W:\Datasets\plytest\inference_full.binary.ply",
@"W:\Datasets\plytest\inference_full.binary.ply",
//@"W:\Datasets\plytest\bunny.ply",
//@"W:\Datasets\plytest\leica-studentenzimmer-scan-125.ply",
//@"W:\Datasets\plytest\2022-05-31_testfile.ply",
//@"E:\e57tests\datasets\matterport.e57",
//@"E:\e57tests\datasets\convex-scan-119.e57",
//@"E:\e57tests\datasets\Punktwolke_M34.e57",
//@"E:\e57tests\datasets\aibotix_ground_points.e57",
//@"E:\e57tests\datasets\Register360_Berlin Office_1.e57",
@"E:\e57tests\datasets\convex-scan-119.e57",
@"E:\e57tests\datasets\Punktwolke_M34.e57",
@"E:\e57tests\datasets\aibotix_ground_points.e57",
@"E:\e57tests\datasets\Register360_Berlin Office_1.e57",
//@"E:\e57tests\datasets\Staatsoper.e57",
//@"E:\e57tests\datasets\Innenscan_FARO.e57",
//@"E:\e57tests\datasets\1190_31_test_Frizzo.e57",
//@"E:\e57tests\datasets\Neuhäusl-Hörschwang.e57",
//@"E:\e57tests\datasets\2020452-B-3-5.e57",
//@"E:\e57tests\datasets\100pct_1mm_zebcam_shade_zebcam_world.e57",
@"E:\e57tests\datasets\1190_31_test_Frizzo.e57",
@"E:\e57tests\datasets\Neuhäusl-Hörschwang.e57",
@"E:\e57tests\datasets\2020452-B-3-5.e57",
@"E:\e57tests\datasets\100pct_1mm_zebcam_shade_zebcam_world.e57",
};

//filenames = Directory
Expand All @@ -1771,7 +1772,7 @@ internal static void Test_Import_Regression()

var key = Path.GetFileName(filename);

var storePath = $@"E:\e57tests\stores\{key}";
var storePath = $@"T:\e57tests\stores\{key}";
Directory.CreateDirectory(storePath);
using var storeRaw = new SimpleDiskStore(Path.Combine(storePath, "data.uds"));
var store = storeRaw.ToPointCloudStore();
Expand All @@ -1786,8 +1787,8 @@ internal static void Test_Import_Regression()
.WithStorage(store)
.WithKey(key)
.WithVerbose(true)
//.WithMaxDegreeOfParallelism(1)
.WithMinDist(0.005)
.WithMaxDegreeOfParallelism(1)
.WithMinDist(0.0025)
.WithNormalizePointDensityGlobal(true)
//.WithProgressCallback(p => { Report.Line($"{p:0.00}"); })
;
Expand Down Expand Up @@ -2335,7 +2336,9 @@ static Task Test_20221218()

public static async Task Main(string[] _)
{
await Test_20221218();
Test_Import_Regression();

//await Test_20221218();

//{
// var stream = await new HttpClient().GetStreamAsync("http://localhost:8080/Vgm/Data/E57/JBs_Haus.e57");
Expand Down

0 comments on commit 9c0f476

Please sign in to comment.