FACT++  1.0
void FilterLed::MarkPoint ( const Led led) const

Definition at line 166 of file FilterLed.cc.

References Led::GetX(), and Led::GetY().

Referenced by Execute(), MStarguider::ProcessFrame(), and MCaos::Run().

167 {
168  /*
169  int32_t M = (int)(log(led.GetMag())*20);
170 
171  cout << led.GetMag() << endl;
172 
173  if (M>0xff)
174  M=0xff;
175  if (M<0xc0)
176  M=0xc0;
177  */
178 
179  const int x = (int)(led.GetX()+.5);
180  const int y = (int)(led.GetY()+.5);
181 
182  MarkPoint(x, y, 0xff);
183 }
void MarkPoint(const Led &led) const
Definition: FilterLed.cc:166
double GetY() const
Definition: Led.h:42
double GetX() const
Definition: Led.h:41

+ Here is the call graph for this function:

+ Here is the caller graph for this function: