如何使用Matplotlib绘制覆盖轴的制造商?

时间:2017-07-08 02:17:30

标签: python matplotlib

这就是我想要的效果。

enter image description here

但我得到下图,其中标记被轴覆盖。如果左侧y轴设置为不可见,则只显示标记的一半。

enter image description here

1 个答案:

答案 0 :(得分:1)

您必须关闭剪辑,设置#include <Kinect.h> #include <cmath> #include <cstdio> #include <cstdlib> #include <Windows.h> #include <iostream> using namespace std; const int width = 512; const int height = 424; const int colorwidth = 1920; const int colorheight = 1080; IDepthFrameReader* reader; // Kinect depth data source IKinectSensor* sensor = nullptr; int main(int argc, char* argv[]) { if (FAILED(GetDefaultKinectSensor(&sensor))) { return 19; } if (sensor) { sensor->Open(); IDepthFrameSource* framesource = NULL; sensor->get_DepthFrameSource(&framesource); framesource->OpenReader(&reader); if (framesource) { framesource->Release(); framesource = NULL; } IDepthFrame* frame = NULL; if (SUCCEEDED(reader->AcquireLatestFrame(&frame))) { cout << "not bad"; getchar(); return 100; } else{ cout << "not found"; getchar(); return 23; } } else { return -1; } } ,参考official doc