Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add splat writer #1

Merged
merged 12 commits into from
Mar 8, 2025
Merged

Add splat writer #1

merged 12 commits into from
Mar 8, 2025

Conversation

joserochh
Copy link
Collaborator

Untested version of splat writer.

Type

  • Bug fix (non-breaking change which fixes an issue): Fixes #
  • New feature (non-breaking change which adds functionality). Resolves #
  • Breaking change (fix or feature that would cause existing functionality to not work as expected) Resolves #

Motivation and Context

Checklist:

  • I have run python util/check_style.py --apply to apply Open3D code style
    to my code.
  • This PR changes Open3D behavior or adds new functionality.
    • Both C++ (Doxygen) and Python (Sphinx / Google style) documentation is
      updated accordingly.
    • I have added or updated C++ and / or Python unit tests OR included test
      results
      (e.g. screenshots or numbers) here.
  • I will follow up and update the code if CI fails.
  • For fork PRs, I have selected Allow edits from maintainers.

Description

joserochh and others added 2 commits March 6, 2025 16:55
Untested version of splat writer.
reporter.SetTotal(file.GetFileSize());

//Constants
constexpr size_t data_size = 32;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can call this SPLAT_GAUSSIAN_BYTE_SIZE = 32; and do as a #define

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am agree

int numberOfPoints = 0;

// Vectors to store the data
std::vector<float> positionVector;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do not use camel case for variables. You can use underscores instead, like "position_vector". Check naming of all variables

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, use Snake case instead. Something like this snake_case_example

f_dcVector.insert(f_dcVector.end(), f_dc, f_dc + 3);
f_restVector.insert(f_restVector.end(), f_rest, f_rest + 3);

reporter.Update(file.CurPos());
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They like to update progress every 1000 iterations

Use a counter:

if (++i % 1000 == 0) {
reporter.Update(file.CurPos());
}

@lumurillo lumurillo changed the base branch from main to issue-7153-dev March 7, 2025 15:04
Copy link
Owner

@lumurillo lumurillo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see comments

reporter.SetTotal(file.GetFileSize());

//Constants
constexpr size_t data_size = 32;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am agree

int numberOfPoints = 0;

// Vectors to store the data
std::vector<float> positionVector;
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, use Snake case instead. Something like this snake_case_example

@lumurillo
Copy link
Owner

Run the following command to check the code style. That needs to match with the one expected for Open3D.

  • Install some dependencies into your env if you haven't done it yet:
pip install -r python/requirements_style.txt
  • Run the following script to check and apply changes to the code style:
python util/check_style.py --apply

@joserochh joserochh marked this pull request as ready for review March 8, 2025 04:43
@lumurillo lumurillo merged commit b5071b9 into issue-7153-dev Mar 8, 2025
10 of 30 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants