Difference between revisions of "User:Jin Ke"

From BRL-CAD
(Development Logs)
(Development Logs)
(2 intermediate revisions by the same user not shown)
Line 17: Line 17:
  
 
* add a_hit() and a_miss() function
 
* add a_hit() and a_miss() function
 +
 +
 +
==Monday, June 24th, 2024==
 +
 +
* finish plotting points with a mged script. I create a mged automately:
 +
<pre>
 +
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
 +
</pre>
 +
 +
==Tuesday, June 25th, 2024==
 +
 +
Add sample methods:
 +
<pre>
 +
RayParam SampleRandom(size_t num);
 +
RayParam SampleSphere(size_t num);
 +
RayParam UniformSphere(size_t num);
 +
</pre>

Revision as of 10:04, 25 June 2024

Development Logs

Community Bonding Period


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);