1)修改背面180°不生效问题

This commit is contained in:
masayume 2021-04-10 10:43:54 +08:00
commit 90257df69d
4 changed files with 5 additions and 5 deletions

View File

@ -310,7 +310,6 @@ BOOL GScanO400::Get_Scanner_PaperOn()
if (!(m_usb.get() && m_usb->is_open()))
return false;
USBCB usbcb = { GET_PAPER_STATUS ,0,0 };
usbcb.u32_Data = 1;
std::lock_guard<std::mutex> lck(m_imgLocker);
m_usb->write_bulk(&usbcb, sizeof(usbcb));
if (m_usb.get() && m_usb->is_connected()) {

View File

@ -6,7 +6,7 @@
#include "filetools.h"
#include <math.h>
#include "StopWatch.h"
#include "JpegBuffer.h"
//#include "JpegBuffer.h"
using namespace cv;
using namespace std;

View File

@ -6,7 +6,7 @@
#include "PublicFunc.h"
#include "BlockingQueue.h"
#include <memory>
#include "threadpool.hpp"
//#include "threadpool.hpp"
#include "PaperSize.h"
#include "filetools.h"
@ -62,7 +62,8 @@ private:
class Mat2BmpBw :public IMat2Bmp {
public:
Mat2BmpBw(const cv::Mat& mat,float res) {
//static int indeximg = 0;
//cv::imwrite("D:\\" + to_string(++indeximg) + ".jpg", mat);
m_data = std::shared_ptr<std::vector<unsigned char>>(new std::vector<unsigned char >());
int headsize = 62;
int width = mat.cols;

View File

@ -201,7 +201,7 @@ int UsbScanEx::write_bulk(void* data, int len)
int errorcode = GetLastError();
switch (errorcode)
{
case ERROR_IO_PENDING:
case ERROR_IO_PENDING:
GetOverlappedResult(h_pipe, lp_overlap, &dw_size, TRUE);
return dw_size;
case ERROR_FILE_NOT_FOUND: