User:Jin Ke
From BRL-CAD
Contents
- 1 Development Logs
- 2 Community Bonding Period
- 3 Work Period
- 3.1 Monday, June 10th, 2024
- 3.2 Tuesday, June 11th, 2024
- 3.3 Wednesday, June 12th, 2024
- 3.4 Monday, June 24th, 2024
- 3.5 Tuesday, June 25th, 2024
- 3.6 Wednesday, June 26th, 2024
- 3.7 Sunday, June 30th, 2024
- 3.8 Monday, July 1st, 2024
- 3.9 Tuesday, July 2nd, 2024
- 3.10 Wednesday, July 3rd, 2024
- 3.11 Thursday, July 4th, 2024
- 3.12 Friday, July 5th, 2024
- 3.13 Monday, July 8st, 2024
- 3.14 Monday, July 9nd, 2024
Development Logs
Community Bonding Period
- Familiarizing with previous work,especially [Neural Intersection Functions](https://arxiv.org/abs/2306.07191)
Work Period
Monday, June 10th, 2024
- Updated the CMake file to add a new project, rt_trainneural.
- Added the file rt_trainer.cpp, which is prepared for the sampling method.
Tuesday, June 11th, 2024
- A function was written using rt_raytrace to collect receipts with the output r,g,b
Wednesday, June 12th, 2024
- add a_hit() and a_miss() function
Monday, June 24th, 2024
- finish plotting points with a mged script. I create a mged automately:
in point1.s sph 1 1 1 0.1 in point2.s sph 1 2 1 0.1 in point3.s sph 1 1 2 0.1 r all_points.g u point1.s u point2.s u point3.s B all_points.g
Tuesday, June 25th, 2024
Add sample methods:
RayParam SampleRandom(size_t num); RayParam SampleSphere(size_t num); RayParam UniformSphere(size_t num);
Wednesday, June 26th, 2024
Finish store res as json file,like this: {
"dir": [ 0.46341427145648684, -0.6747185194294957, -0.5744581207967407 ], "point": [ -30.10931324293444, 72.95779116737057, 81.61656328468132 ], "rgb": [ 173, 89, 174 ] }
}
Sunday, June 30th, 2024
Finish my first nerual rendering and genertae a picture.
Monday, July 1st, 2024
convert coordinate data to spherical data. create dataset and related methods.
Tuesday, July 2nd, 2024
There are some errors in coordinate convert, I fixed them all
Wednesday, July 3rd, 2024
Write a deep resnet to train, it doesn't work
Thursday, July 4th, 2024
Try to improve resnet performance by modifying hyperparameters
Friday, July 5th, 2024
Get a great result with resnet
Monday, July 8st, 2024
finish grid net with fixed dir, the result was not so bad
Monday, July 9nd, 2024
finish grid net with any dir, the result was too bad