MediaWiki API result

This is the HTML representation of the JSON format. HTML is good for debugging, but is unsuitable for application use.

Specify the format parameter to change the output format. To see the non-HTML representation of the JSON format, set format=json.

See the complete documentation, or the API help for more information.

{
    "batchcomplete": "",
    "continue": {
        "lecontinue": "20221026064014|1022",
        "continue": "-||"
    },
    "query": {
        "logevents": [
            {
                "logid": 1032,
                "ns": 201,
                "title": "Function:DemosaicHQLI",
                "pageid": 260,
                "logpage": 260,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2024-06-23T12:41:24Z",
                "comment": "Created page with \"__NOTOC__ Performs high quality demosaic using linear interpolation inspired by the following paper:  *  HIGH - QUALITY LINEAR INTERPOLATION FOR DEMOSAICING OF BAYER - PATTERNED COLOR IMAGES  *\tHenrique S.Malvar, Li-wei He, and Ross Cutler  *\tMicrosoft Research  *\tOne Microsoft Way, Redmond, WA 98052, USA Supports neighborhood/filtersize of 5,7 & 9.  ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\"> CuviStatus demosaicHQLI(const CuviImage& src,...\""
            },
            {
                "logid": 1031,
                "ns": 201,
                "title": "Function:V210TOYUV444",
                "pageid": 259,
                "logpage": 259,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-11-07T07:10:26Z",
                "comment": "Created page with \"__NOTOC__ V210 to YUV444 converter\""
            },
            {
                "logid": 1030,
                "ns": 201,
                "title": "Function:YUV444TOV210",
                "pageid": 258,
                "logpage": 258,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-11-07T07:10:06Z",
                "comment": "Created page with \"__NOTOC__ YUV444 to V210 converter\""
            },
            {
                "logid": 1029,
                "ns": 201,
                "title": "Function:YUV422TOV210",
                "pageid": 257,
                "logpage": 257,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-11-07T07:09:50Z",
                "comment": "Created page with \"__NOTOC__ YUV422 to V210 converter\""
            },
            {
                "logid": 1028,
                "ns": 201,
                "title": "Function:FPNCorrection",
                "pageid": 256,
                "logpage": 256,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-11-07T07:08:01Z",
                "comment": "Created page with \"__NOTOC__ Removes fixed point camera noise from the image using a more robust method than [[Function:fpn]]. In addition to black image, the function also takes a white image and gain value to remove noise from the input image using the internal formula: ''dst[i] = Saturate(gain * (src[i]- black[i])/(white[i] - black[i]),0,maxValue)''; ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\"> CuviStatus FPNCorrection(const CuviImage& src,...\""
            },
            {
                "logid": 1027,
                "ns": 201,
                "title": "Function:Fpn",
                "pageid": 255,
                "logpage": 255,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-11-07T06:58:10Z",
                "comment": "Created page with \"__NOTOC__ Removes fixed point camera noise from the image using black image. Ideally the black image taken from camera with closed shutter should be all 0s. Any value above that is considered a black noise and can be removed via the formula: outputImage[i] = max(0, inputImage[i] - blackImage[i]); ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\"> CuviStatus fpn(CuviImage &output,                const CuviImage &input,                const CuviImag...\""
            },
            {
                "logid": 1026,
                "ns": 201,
                "title": "Function:Dot",
                "pageid": 254,
                "logpage": 254,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-10-31T11:26:45Z",
                "comment": "Created page with \"__NOTOC__ Computes the dot product of two 2D images and stores into a 1D scalar. ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\"> CuviStatus cuvi::arithmeticLogical::dot(CuviImage& src1,                                          CuviImage& src2,                                         CuviScalar& result,                                         const CuviStream& stream = CuviStream()); </syntaxhighlight> |}  ====Parameters==== {| |style=\"font-size...\""
            },
            {
                "logid": 1025,
                "ns": 201,
                "title": "Function:InRange",
                "pageid": 253,
                "logpage": 253,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-10-31T08:46:46Z",
                "comment": "Created page with \"__NOTOC__ Checks if image values lie between the range defined by two values and returns a boolean image output. The output image is always 8-bit with either 0 or 255 as an pixel value.  ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\">  CuviStatus inRange(const CuviImage& src,                          const Cuvi32f rangeMin,                          const Cuvi32f rangeMax,                          const CuviStream& stream = CuviStream());  </syn...\""
            },
            {
                "logid": 1024,
                "ns": 201,
                "title": "Function:BlackGammaLUT",
                "pageid": 252,
                "logpage": 252,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-10-31T08:30:17Z",
                "comment": "Created page with \"__NOTOC__ Remaps image values according to look up tables but instead of a single table like in [[LUT|Function:LUT]], the blackGammaLUT takes separate tables for each channel. ====Function==== {| |style=\"font-size:100%;\"| <syntaxhighlight lang=\"cpp\">  CuviStatus blackGammaLUT(const CuviImage& src,                          CuviImage& dst,                          Cuvi16u* redLUT,                          Cuvi16u* greenLUT,                          Cuvi16u* blueLUT,...\""
            },
            {
                "logid": 1023,
                "ns": 6,
                "title": "File:Color pipeline.png",
                "pageid": 251,
                "logpage": 251,
                "params": {},
                "type": "create",
                "action": "create",
                "user": "Jawad",
                "timestamp": "2022-10-26T06:40:14Z",
                "comment": ""
            }
        ]
    }
}