imageMatting.js 723 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. const { post } = require('./request')
  2. module.exports = {
  3. checkSelectImages(data){
  4. return post({
  5. url: '/check_select_images',
  6. data: data
  7. })
  8. },
  9. segmentImages(data){
  10. return post({
  11. url: '/segment_images',
  12. data: data,
  13. headers:{
  14. 'Content-Type':"application/json",
  15. }
  16. })
  17. },
  18. //ÈĘ̈ͼ
  19. modelFormSegment(data){
  20. return post({
  21. url: '/model_form_segment',
  22. data: data,
  23. headers:{
  24. 'Content-Type':"application/json",
  25. }
  26. })
  27. },
  28. // ²é½ø¶È
  29. searchBacthProgress(data){
  30. return post({
  31. url: '/search_bacth_progress',
  32. data: data,
  33. headers:{
  34. 'Content-Type':"application/json",
  35. }
  36. })
  37. },
  38. }