HSV.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // HSV.cpp: implementation of the CHSV class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "HSV.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. CHSV::CHSV(float R,float G,float B)
  10. {
  11. /* float max  = MAX(R,MAX(G,B)),min = MIN(R,MIN(G,B));
  12. float delta =max - min;
  13. m_V =max;
  14. if(max = 0.0 )
  15. {
  16. m_S = delta/max;
  17. }
  18. else
  19. {
  20. m_S = 0.0;
  21. }
  22. if()
  23. */
  24. }
  25. CHSV::~CHSV()
  26. {
  27. }
  28. float CHSV::GetH()
  29. {
  30. return m_H;
  31. }
  32. float CHSV::GetV()
  33. {
  34. return m_V;
  35. }
  36. float CHSV::GetS()
  37. {
  38. return m_S;
  39. }