(rleObjs)
| 105 | return _mask.decode([rleObjs])[:,:,0] |
| 106 | |
| 107 | def area(rleObjs): |
| 108 | if type(rleObjs) == list: |
| 109 | return _mask.area(rleObjs) |
| 110 | else: |
| 111 | return _mask.area([rleObjs])[0] |
| 112 | |
| 113 | def toBbox(rleObjs): |
| 114 | if type(rleObjs) == list: |
nothing calls this directly
no outgoing calls
no test coverage detected