+
    A•üiÓ  ã                   ó$   € ^ RI Ht ^ RItRR ltR# )é    )Útrimap_splitNc                ó  € VP                   R,          w  rE\        V4      w  rgr‰W(,          p
W&,          p\        P                  P	                  V
4      pW,           pVP                  4       pVP                  4        V'       d   WÛV
3# WÛ3# )aš  This function constructs a linear system from a matting Laplacian by
constraining the foreground and background pixels with a diagonal matrix
`C` to values in the right-hand-side vector `b`. The constraints are
weighted by a factor :math:`\lambda`. The linear system is given as

.. math::

  A = L + \lambda C,

where :math:`C=\mathop{Diag}(c)` having :math:`c_i = 1` if pixel i is known
and :math:`c_i = 0` otherwise.
The right-hand-side :math:`b` is a vector with entries :math:`b_i = 1` is
pixel is is a foreground pixel and :math:`b_i = 0` otherwise.


Parameters
----------
L: scipy.sparse.spmatrix
    Laplacian matrix, e.g. calculated with :code:`lbdm_laplacian` function
trimap: numpy.ndarray
    Trimap with shape :math:`h\times w`
lambda_value: float
    Constraint penalty, defaults to 100
return_c: bool
    Whether to return the constraint matrix `C`, defaults to False

Returns
-------
A: scipy.sparse.spmatrix
    Matrix describing the system of linear equations
b: numpy.ndarray
    Vector describing the right-hand side of the system
C: numpy.ndarray
    Vector describing the diagonal entries of the matrix `C`, only returned
    if `return_c` is set to True
:Né   N)Úshaper   ÚscipyÚsparseÚdiagsÚtocsrÚsum_duplicates)ÚLÚtrimapÚlambda_valueÚreturn_cÚhÚwÚis_fgÚis_bgÚis_knownÚ
is_unknownÚcÚbÚCÚAs   &&&&          Ú[/var/www/html/photoedit/myenv/lib/python3.14/site-packages/pymatting/laplacian/laplacian.pyÚmake_linear_systemr      sy   € ðJ <‰<˜ÕD€Aä)5°fÓ)=Ñ&€E(àÕ€AØÕ€Aä‰×Ñ˜1Ó€Aà	€Aà	‰‹	€Aà×ÑÔçØQˆwˆàˆ4€Kó    )g      Y@F)Úpymatting.util.utilr   Úscipy.sparser   r   © r   r   Ú<module>r       s   ðÝ ,Û ö7r   