我試圖實施手指檢測,該鏈接給出的是here。我正在閱讀MSVC2010中的代碼,它給了我如圖所示的錯誤,如下所示。有人能告訴我爲什麼下面的代碼給我錯誤?這與以下問題有關嗎? 1,2,3?有沒有可能的解決方法?我已經包含:由於「不允許輸入類型名稱」而導致代碼在MSVC++ 2010中工作的解決方法
#include <cstdint>
#include <stdint.h>
我也試過:
unsigned short depth = (unsigned short) (v[2] * 1000.0f); // hand depth
unsigned short near = (unsigned short) (depth - 100); // near clipping plane
unsigned short far = (unsigned short) (depth + 100); // far clipping plane
,但沒有奏效。
感謝,
ikel
不包括'cstdint'和'stdint.h'。他們指的是同樣的事情,但'cstdint'是適合使用的。 – codeling
@nyarlathotep感謝您的意見。我將刪除'stdint.h'。 – ikel