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

Feature/doc warning fix #438

Merged
merged 4 commits into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/source/Support/bskReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Basilisk Release Notes
CAD asteroid or lunar surface terrain.
- spacecraft charging related modules
- support a way to do thread-safe messaging
- ability to integrate Python Basilisk modules in the same task and process as C/C++ modules
- automated documentation build system when code is pushed to the repo


Expand Down
2 changes: 1 addition & 1 deletion src/architecture/_GeneralModuleFiles/sys_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SysModel
{
public:
SysModel();
SysModel(const SysModel &obj);
SysModel(const SysModel &obj); //!< constructor definition

virtual ~SysModel(){};

Expand Down
7 changes: 1 addition & 6 deletions src/simulation/sensors/camera/camera.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -254,11 +254,6 @@ void Camera::addCosmicRayBurst(const cv::Mat& mSrc, cv::Mat &mDst, double num){
* being applied.
* @param mSource source image
* @param mDst destination of modified image
* @param gaussian scaling factor for gaussian noise
* @param darkCurrent scaling factor for dark current
* @param saltPepper scaling factor for hot and dead pixels
* @param cosmicRays number of cosmic rays to add
* @param blurparam size of blur to apply
* @return void
*/
void Camera::applyFilters(cv::Mat &mSource, cv::Mat &mDst){
Expand Down Expand Up @@ -306,7 +301,7 @@ void Camera::applyFilters(cv::Mat &mSource, cv::Mat &mDst){
/*! This module reads an OpNav image and extracts circle information from its content using OpenCV's HoughCircle
* Transform. It performs a greyscale, a bur, and a threshold on the image to facilitate circle-finding.
@return void
@param CurrentSimNanos The clock time at which the function was called (nanoseconds)
@param currentSimNanos The clock time at which the function was called (nanoseconds)
*/
void Camera::UpdateState(uint64_t currentSimNanos)
{
Expand Down
Loading