HDR教程中的例外情况

时间:2017-05-17 07:28:59

标签: c++ opencv

我正在做一个关于创建HDR图像的教程,当我调用 public void notifySuccess(String requestType,JSONObject response); public void notifyError(String requestType,VolleyError error); AsyncTask.execute(new Runnable() { @Override public void run() { if (loginSessionManager.isLogin()){ cServerRequest = new CServerRequest(mResultcallBack,mContext); JSONObject jsonObject = null; try { jsonObject = new JSONObject(); jsonObject.put(CRequestKey.AGENT_CODE, m_szMobileNumber.trim());// sending mobile no.(static right know becuse of ser side data on other is null jsonObject.put(CRequestKey.PIN, m_szEncryptedPassword.trim());// same here as said above Log.e(TAG,"Request::"+jsonObject.toString()); } catch (JSONException e) { e.printStackTrace(); } final String s_szWalletURL = CAPIStorage.IREWARDS_URL + CAPIStorage.WALLET_BALANCE_URL; cServerRequest.postWalletRequest("POST",s_szWalletURL,jsonObject); }else { Log.e(TAG,"Not loggedin"); } } }); calDebevec的过程函数时,我一直得到这个例外:

Exception

我尝试使用以下库版本:2.4.13.2,3.1和3.2但没有成功。

代码:

mergeDebevec

教程的链接:http://docs.opencv.org/3.0-rc1/d3/db7/tutorial_hdr_imaging.html

2 个答案:

答案 0 :(得分:0)

您有一个整数除法:1 / 450.0f。请注意,教程通过提供float作为分隔符来设法躲避子弹。

答案 1 :(得分:0)

我通过使用debug dll而不是发布版本解决了这个问题。