c++怎样把程序内的数据输出到excel里?
最近因为要用到leapmotion想把他里面测出的坐标手的大小等一些数据记录到excel里请问该怎么办怎么写程序//手指数ss<<"FingerCount:"<<mCur...
最近因为要用到leapmotion想 把他里面测出的坐标手的大小等一些数据记录到excel里请问该怎么办怎么写程序
// 手指数
ss << "Finger Count : " << mCurrentFrame.fingers().count() << "\n";
// 検出した手の数
ss << "Hand Count : " << mCurrentFrame.hands().count() << "\n";
// 手指的坐标
for (auto finger : mCurrentFrame.fingers()) {
ss << "Finger Position: " << finger.tipPosition().x << ", "
<< finger.tipPosition().y << ", "
<< finger.tipPosition().z << "\n";
}
// 手的坐标
for (auto hand : mCurrentFrame.hands()) {
ss << "Hand Palm Position: " << hand.palmPosition().x << ", "
<< hand.palmPosition().y << ", "
<< hand.palmPosition().z << "\n";
}
// 手指的长度粗细
for (auto finger : mCurrentFrame.fingers()) {
if (finger.isExtended()) {
const Leap::Bone::Type boneType[] = {
Leap::Bone::Type::TYPE_METACARPAL,
Leap::Bone::Type::TYPE_PROXIMAL,
Leap::Bone::Type::TYPE_INTERMEDIATE,
Leap::Bone::Type::TYPE_DISTAL,
};
for (auto type : boneType) {
auto bone = finger.bone(type);
ss << bone.length() << ", " << bone.width() << std::endl;
}
}
}
auto tbox = TextBox()
.alignment(TextBox::LEFT)
.font(mFont)
.text(ss.str())
.color(Color(1.0f, 1.0f, 1.0f))
.backgroundColor(ColorA(0, 0, 0, 0.5f));
mTextTexture = gl::Texture(tbox.render());
}
这几个数据想实现记录功能通过键盘按键记录输出到excel里,麻烦了急等
开发环境是vistual studio2013 展开
// 手指数
ss << "Finger Count : " << mCurrentFrame.fingers().count() << "\n";
// 検出した手の数
ss << "Hand Count : " << mCurrentFrame.hands().count() << "\n";
// 手指的坐标
for (auto finger : mCurrentFrame.fingers()) {
ss << "Finger Position: " << finger.tipPosition().x << ", "
<< finger.tipPosition().y << ", "
<< finger.tipPosition().z << "\n";
}
// 手的坐标
for (auto hand : mCurrentFrame.hands()) {
ss << "Hand Palm Position: " << hand.palmPosition().x << ", "
<< hand.palmPosition().y << ", "
<< hand.palmPosition().z << "\n";
}
// 手指的长度粗细
for (auto finger : mCurrentFrame.fingers()) {
if (finger.isExtended()) {
const Leap::Bone::Type boneType[] = {
Leap::Bone::Type::TYPE_METACARPAL,
Leap::Bone::Type::TYPE_PROXIMAL,
Leap::Bone::Type::TYPE_INTERMEDIATE,
Leap::Bone::Type::TYPE_DISTAL,
};
for (auto type : boneType) {
auto bone = finger.bone(type);
ss << bone.length() << ", " << bone.width() << std::endl;
}
}
}
auto tbox = TextBox()
.alignment(TextBox::LEFT)
.font(mFont)
.text(ss.str())
.color(Color(1.0f, 1.0f, 1.0f))
.backgroundColor(ColorA(0, 0, 0, 0.5f));
mTextTexture = gl::Texture(tbox.render());
}
这几个数据想实现记录功能通过键盘按键记录输出到excel里,麻烦了急等
开发环境是vistual studio2013 展开
3个回答
展开全部
你存入文件,然后excel导入这个文件就ok
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
c++操作excel话就要用到自动化,导出excel的类库然后自己去写,这个挺麻烦的。如果不要求语言的话建议你用python,可以导入第三方的库直接去操作,非常方便的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
输出的时候用逗号[或者\t]隔,输出到文件,之后将文件的内容复制到excel里就行~~
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询